科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道基础软件ASP.NET模拟其他用户进行关机

ASP.NET模拟其他用户进行关机

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

using System; using System.Collections.Generic; using System.Text; using System.Security.Principal; using System.Runtime.InteropServices;

作者:中国IT实验室 来源:中国IT实验室 2007年8月31日

关键字: 关机 ASP.NET

  • 评论
  • 分享微博
  • 分享邮件
   using System;
  using System.Collections.Generic;
  using System.Text;
  using System.Security.Principal;
  using System.Runtime.InteropServices;
  
  public class Impersonate
  {
   #region 模拟
   private WindowsImpersonationContext impersonationContext;
  
   private const int LOGON32_LOGON_INTERACTIVE = 2;
   private const int LOGON32_PROVIDER_DEFAULT = 0;
  
   [DllImport("advapi32.dll", CharSet = CharSet.Auto)]
   private static extern int LogonUser(String lpszUserName, String lpszDomain, String lpszPassword,
   int dwLogonType, int dwLogonProvider, ref IntPtr phToken);
  
   [DllImport("advapi32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto, SetLastError = true)]
   private extern static int DuplicateToken(IntPtr hToken, int impersonationLevel, ref IntPtr hNewToken);
  
   [DllImport("advapi32.dll", CharSet = CharSet.Auto, SetLastError = true)]
   private static extern bool RevertToSelf();
  
   [DllImport("kernel32.dll", CharSet = CharSet.Auto)]
   private extern static bool CloseHandle(IntPtr handle);
  
   /// <summary>
   /// 模拟一个用户
   /// </summary>
   /// <param name="userName">用户名</param>
   /// <param name="password">密码</param>
   /// <param name="domain">域名/计算机名</param>
   /// <returns>true 模拟成功,false 模拟失败</returns>
   public bool ImpersonateUser(string userName, string password, string domain)
   {
   WindowsIdentity wi;
   IntPtr token = IntPtr.Zero;
   IntPtr tokenDuplicate = IntPtr.Zero;
   if (RevertToSelf())
   {
   if (LogonUser(userName, domain, password,
   LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, ref token) != 0)
   {
   if (DuplicateToken(token, 2, ref tokenDuplicate) != 0)
   {
   wi = new WindowsIdentity(tokenDuplicate);
   impersonationContext = wi.Impersonate();
   if (impersonationContext != null)
   {
   CloseHandle(tokenDuplicate);
   CloseHandle(token);
   return true;
   }
   else
   {
   if (tokenDuplicate != IntPtr.Zero) CloseHandle(tokenDuplicate);
   if (token != IntPtr.Zero) CloseHandle(token);
   return false;
   }
   }
   else
   {
   if (token != IntPtr.Zero) CloseHandle(token);
   return false;
   }
   }
   else
   return false;
   }
   else
   return false;
   }
  
   /// <summary>
   /// 取消模拟
   /// </summary>
   public void UndoImpersonation()
   {
   impersonationContext.Undo();
   }
   #endregion
  
   #region 关机
   [StructLayout(LayoutKind.Sequential, Pack = 1)]
   private struct TokPriv1Luid
   {
   public int Count;
   public long Luid;
   public int Attr;
   }
  
   [DllImport("kernel32.dll", ExactSpelling = true)]
   private static extern IntPtr GetCurrentThread();
  
   [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
   private static extern bool OpenThreadToken(IntPtr h, int acc, bool openAsSelf, ref IntPtr phtok);
  
   [DllImport("advapi32.dll", SetLastError = true)]
   private static extern bool LookupPrivilegeValue(string host, string name, ref long pluid);
  
   [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
   private static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall, ref TokPriv1Luid newst,
   int len, IntPtr prev, IntPtr relen);
  
   [DllImport("user32.dll", ExactSpelling = true, SetLastError = true)]
   private static extern bool ExitWindowsEx(int flg, int rea);
  
   [DllImport("advapi32.dll")]
   private static extern bool InitiateSystemShutdown(string Machinename, string Message,
   long Timeout, bool ForceAppsClosed, bool RebootAfterShutdown);
  
   private const int SE_PRIVILEGE_ENABLED = 0x00000002;
   private const int TOKEN_QUERY = 0x00000008;
   private const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;
   private const string SE_SHUTDOWN_NAME = "SeShutdownPrivilege";
   private const int EWX_LOGOFF = 0x00000000;
   private const int EWX_SHUTDOWN = 0x00000001;
   private const int EWX_REBOOT = 0x00000002;
   private const int EWX_FORCE = 0x00000004;
   private const int EWX_POWEROFF = 0x00000008;
   private const int EWX_FORCEIFHUNG = 0x00000010;
  
   /// <summary>
   /// 关机
   /// </summary>
   /// <returns></returns>
   public bool ShutDown()
   {
   bool result;
   TokPriv1Luid tp;
   //注意:这里用的是GetCurrentThread,而不是GetCurrentProcess
   IntPtr hproc = GetCurrentThread();
   IntPtr htok = IntPtr.Zero;
   //注意:这里用的是OpenThreadToken(打开线程令牌),而不是OpenProcessToken(打开进程令牌)
   result = OpenThreadToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY,
   true, ref htok);
   tp.Count = 1;
   tp.Luid = 0;
   tp.Attr = SE_PRIVILEGE_ENABLED;
   result = LookupPrivilegeValue(null, SE_SHUTDOWN_NAME, ref tp.Luid);
   result = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero);
   result = InitiateSystemShutdown("", "", 60, true, false);
   return result;
   }
   #endregion
  }
  http://www.cnblogs.com/anjou/archive/2006/11/30/577279.html
查看本文来源
    • 评论
    • 分享微博
    • 分享邮件
    闂傚倸鍊搁崐椋庢閿熺姴鐭楅幖娣妼缁愭鏌¢崶鈺佷汗闁哄閰i弻鏇$疀鐎n亞浠炬繝娈垮灠閵堟悂寮婚弴锛勭杸閻庯綆浜栭崑鎾诲冀椤撱劎绋忛梺璺ㄥ櫐閹凤拷

    濠电姷鏁告慨鐑姐€傛禒瀣劦妞ゆ巻鍋撻柛鐔锋健閸┾偓妞ゆ巻鍋撶紓宥咃躬楠炲啫螣鐠囪尙绐為梺褰掑亰閸撴盯鎮惧ú顏呪拺闂傚牊鍗曢崼銉ョ柧婵犲﹤瀚崣蹇旂節婵犲倻澧涢柛瀣ㄥ妽閵囧嫰寮介妸褋鈧帡鏌熼挊澶婃殻闁哄瞼鍠栭幃婊堝煛閸屾稓褰嬮柣搴ゎ潐濞叉ê鐣濈粙璺ㄦ殾闁割偅娲栭悡娑㈡煕鐏炲墽鐭嬫繛鍫熸倐濮婄粯鎷呯粵瀣異闂佹悶鍔嬮崡鍐茬暦閵忋倕鍐€妞ゆ劑鍎卞皬闂備焦瀵х粙鎴犫偓姘煎弮瀹曚即宕卞Ο闀愮盎闂侀潧鐗嗛幊搴㈡叏椤掆偓閳规垿鍩ラ崱妞剧凹濠电姰鍨洪敋閾荤偞淇婇妶鍛櫤闁稿鍊圭换娑㈠幢濡纰嶉柣搴㈣壘椤︾敻寮诲鍫闂佸憡鎸鹃崰搴敋閿濆鏁嗗〒姘功閻绻涢幘鏉戠劰闁稿鎹囬弻锝呪槈濞嗘劕纾抽梺鍝勬湰缁嬫垿鍩為幋锕€宸濇い鏇炴噺閳诲﹦绱撻崒娆戝妽妞ゃ劌鎳橀幆宀勫磼閻愰潧绁﹂柟鍏肩暘閸斿矂鎮為崹顐犱簻闁圭儤鍨甸鈺呮倵濮橆剦妲归柕鍥у瀵粙濡歌閸c儳绱撴担绛嬪殭婵☆偅绻堝濠氭偄绾拌鲸鏅i悷婊冪Ч閹﹢鎳犻鍌滐紲闁哄鐗勯崝搴g不閻愮儤鐓涢悘鐐跺Г閸犳﹢鏌℃担鐟板鐎规洜鍠栭、姗€鎮╅搹顐ら拻闂傚倷娴囧畷鍨叏閹惰姤鈷旂€广儱顦崹鍌炴煢濡尨绱氶柨婵嗩槸缁€瀣亜閺嶃劎鈽夋繛鍫熺矒濮婅櫣娑甸崨顔俱€愬銈庡亝濞茬喖宕洪埀顒併亜閹哄棗浜鹃梺鎸庢穿婵″洤危閹版澘绫嶉柛顐g箘椤撴椽姊虹紒妯哄鐎殿噮鍓欒灃闁告侗鍠氶崢鎼佹⒑閸撴彃浜介柛瀣閹﹢鏁冮崒娑氬幈闁诲函缍嗛崑鍡樻櫠椤掑倻纾奸柛灞剧☉缁椦囨煙閻熸澘顏柟鐓庢贡閹叉挳宕熼棃娑欐珡闂傚倸鍊风粈渚€骞栭銈傚亾濮樺崬鍘寸€规洖缍婇弻鍡楊吋閸涱垽绱遍柣搴$畭閸庨亶藝娴兼潙纾跨€广儱顦伴悡鏇㈡煛閸ャ儱濡煎褜鍨伴湁闁绘ǹ绉鍫熺畳闂備焦瀵х换鍌毼涘Δ鍛厺闁哄洢鍨洪悡鍐喐濠婂牆绀堟慨妯挎硾閽冪喖鏌曟繛褍瀚烽崑銊╂⒑缂佹ê濮囨い鏇ㄥ弮閸┿垽寮撮姀鈥斥偓鐢告煥濠靛棗鈧懓鈻嶉崶銊d簻闊洦绋愰幉楣冩煛鐏炵偓绀嬬€规洟浜堕、姗€鎮㈡總澶夌处

    重磅专题
    往期文章
    最新文章